CREATE TABLE [dbo].[ContactOffering]
(
[ContactKey] [uniqueidentifier] NOT NULL,
[ContactOfferingKey] [uniqueidentifier] NOT NULL,
[MarkedForDeleteOn] [datetime] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ContactOffering] ADD CONSTRAINT [PK_ContactOffering] PRIMARY KEY CLUSTERED ([ContactKey], [ContactOfferingKey]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ContactOffering] ADD CONSTRAINT [FK_ContactOffering_ContactBio] FOREIGN KEY ([ContactKey]) REFERENCES [dbo].[ContactBiography] ([ContactKey])
GO
ALTER TABLE [dbo].[ContactOffering] ADD CONSTRAINT [FK_ContactOffering_ContactOfferringRef] FOREIGN KEY ([ContactOfferingKey]) REFERENCES [dbo].[ContactOfferingRef] ([ContactOfferingKey])
GO